From 804962796c9c54adc8df4b5367cac87c5054f402 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Thu, 17 Jun 1993 02:54:43 +0000 Subject: [PATCH] * Makefile.in (src/Makefile): Don't bother exiting single quotes and entering double quotes to get the values of LD_SWITCH_X_SITE and the other make variables; make substitutes them in anyway. --- Makefile.in | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile.in b/Makefile.in index 101fd8d75d2..0f67123d62b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -276,13 +276,13 @@ src/Makefile: ${srcdir}/src/Makefile.in Makefile echo "# Emacs build tree instead, or editing" ; \ echo "# \`${srcdir}/src/Makefile.in' itself." ; \ sed < ${srcdir}/src/Makefile.in \ - -e 's|^\(srcdir *=\).*$$|\1'"${srcdir}"'/src|' \ - -e 's|^\(VPATH *=\).*$$|\1'"${srcdir}"'/src|' \ - -e 's|^CC *=.*$$|CC='"${CC}"'|' \ - -e 's|^CPP *=.*$$|CPP='"${CPP}"'|' \ - -e 's|^LN_S *=.*$$|LN_S='"${LN_S}"'|' \ - -e 's|^CFLAGS *=.*$$|CFLAGS='"${CFLAGS}"'|' \ - -e 's|^\(LD_SWITCH_X_SITE *=\).*$$|\1'"${LD_SWITCH_X_SITE}"'|' \ + -e 's|^\(srcdir *=\).*$$|\1${srcdir}/src|' \ + -e 's|^\(VPATH *=\).*$$|\1${srcdir}/src|' \ + -e 's|^CC *=.*$$|CC=${CC}|' \ + -e 's|^CPP *=.*$$|CPP=${CPP}|' \ + -e 's|^LN_S *=.*$$|LN_S=${LN_S}|' \ + -e 's|^CFLAGS *=.*$$|CFLAGS=${CFLAGS}|' \ + -e 's|^\(LD_SWITCH_X_SITE *=\).*$$|\1${LD_SWITCH_X_SITE}|' \ -e '/^# DIST: /d') > src/Makefile.tmp @${srcdir}/move-if-change src/Makefile.tmp src/Makefile chmod -w src/Makefile -- 2.30.2